DataSource for Entity Framework in WPF
C1.LiveLinq.Indexing Namespace / IIndexedSource<T> Interface / Indexes Property

In This Topic
    Indexes Property (IIndexedSource<T>)
    In This Topic
    Gets the collection of indexes attached to this collection.
    Syntax
    'Declaration
     
    ReadOnly Property Indexes As ScannerCollection(Of T)
    ScannerCollection<T> Indexes {get;}

    Property Value

    A collection of indexes attached to this collection. If this is an independent collection, not the result of a LiveLinq indexing search, then its Indexes collection contains Index<T> objects. Otherwise, that is, if it is the result of an indexing search operation such as Index.Find and others, it contains subindexes implementing C1.LiveLinq.Indexing.Search.IIndexScanner<T>.
    See Also